import plotly.offline as pyo
pyo.init_notebook_mode()
import pandas as pd
import matplotlib
import plotly.express as px
from sqlalchemy import create_engine
import ipywidgets as widgets
from ipywidgets import interact, interact_manual
import datetime
from datetime import timedelta
from plotly.subplots import make_subplots
HOST = '37.139.42.145'
DBNAME = 'game-analytics'
USER = 'analytics'
PASSWORD = 'BRtTaqYiJyr29WXN'
TABLE_SCHEMA = 'data_viz_1068.project_dataset'
engine = create_engine(f'postgresql://{USER}:{PASSWORD}@{HOST}/{DBNAME}')
project_dataset = pd.read_sql(f"""
SELECT *
FROM {TABLE_SCHEMA}
""", con=engine)
project_dataset
project_dataset.info()
project_dataset['event_date'] = pd.to_datetime(project_dataset['event_date'])
project_dataset['cohort_date'] = pd.to_datetime(project_dataset['cohort_date'])
project_dataset.info()
project_dataset['event_name'].unique()
Подготовка
#preinstalls = project_dataset.query('event_date==cohort_date')
preinstalls = project_dataset[project_dataset['event_date'] == project_dataset['cohort_date']]
installs_by_user_type = (preinstalls
.groupby(by=['cohort_date', 'user_type'], as_index=False)
.agg(total_installs=('user_id', 'nunique')))
fig = px.line(installs_by_user_type,x='cohort_date', y='total_installs', color='user_type')
fig.show()
Неорганические.
С конца Октября и по вторую треть Декабря видны инсталлы неорганических пользователей с пиком в 11 Ноября.
Это похоже на начало рекламной компании (27 Октября).
К 25 Декабря деньги у рекламной компании практически закончились.
3 Декабря докинули денег на рекламу.
7 Декабря решили забить полностью на рекламу (/платное продвижение).
После 7 декабря неораганические пользователи практически не приходят.
И 27 Мая (ровно через 7 месяцев) платные инсталлы прекращяются полностью.
Органика.
28 Октября - 10 Ноября органические пользователи регулярно приходят - примерно 140 в день.
11 Ноября происходит резкий скачок органических инсталов с пиком 15 Ноября.
В это время так же был пик неорганических пользователей, возможно они рассказали своим знакомым об игре и это привело к увеличению органики.
Может быть в этот день была еще либа какая акция направленная на привлечение новых пользователей.
Далее число органических инсталов медленно но верно падает. (этому так же способствует прекращение рекламной компании).
23 Марта происходит какое то событие которое приводит к максимальному всплеску инсталов. Который впрочем так же быстро спадает. (может это был заказ рекламы у какого нибудь известного стримера (трафик при этом получился органическим так как игру просто скачали из магазина). А может какой нибудь 1 дневный featuring :).
Далее инсталлы медленно уменьшаются.
installs_by_region = (preinstalls
.groupby(by=['cohort_date', 'region'], as_index=False)
.agg(total_installs=('user_id', 'nunique')))
fig = px.line(installs_by_region,x='cohort_date', y='total_installs', color='region')
fig.show()
installs_by_region = (preinstalls
.groupby(by=['cohort_date', 'country'], as_index=False)
.agg(total_installs=('user_id', 'nunique')))
fig = px.line(installs_by_region,x='cohort_date', y='total_installs', color='country').show()
Оказывается что В начале инсталлы были в основном из России, США и Украины.
Скорее всего игра Русская :).
То что инсталлы идут из разных стран сразу, говорит о том что игра практически сразу релизнулась на весь мир.
Всплеск 23 Марта затронул только СНГ сегмент. Скорее всего мероприятие преведшее к этому произошло для Русской аудитории.
30 Января заметен небольшой всплеск инсталов в Корее.
installs_by_region = (preinstalls
.groupby(by=['cohort_date', 'platform'], as_index=False)
.agg(total_installs=('user_id', 'nunique')))
fig = px.line(installs_by_region,x='cohort_date', y='total_installs', color='platform')
fig.show()
Игра сначало выпустилась только на IOS.
Оказывается пик 11 Ноября связан с релизом Андроид версии. Что привело к большому количеству инставлов именно на Андроид и именно в России.
Мощный Всплесл 23 Марта произошел основном для андроид инсталлов. Мероприятие в этот день было связано с платформой андроид и с пользователями из СНГ. Возможно это был какой то Featuring в андроид магазине для СНГ аудитории.
Всплеск в Кореи 30 января тоже характерен только для андроид.
installs_by_region = (preinstalls
.groupby(by=['cohort_date', 'region'], as_index=False)
.agg(total_installs=('user_id', 'nunique')))
fig = px.line(installs_by_region,x='cohort_date', y='total_installs', color='region').show()
Инсталлы
installs = installs_by_region
installs.head()
Пользователи зашедшие на второй день
tomorrows = project_dataset[project_dataset['event_date']==project_dataset['cohort_date'] + timedelta(days=1)]
tomorrows = tomorrows.groupby(['cohort_date', 'region'], as_index=False).agg(tomorrows=('user_id', 'nunique'))
tomorrows.head()
Таблица удержания второго дня
retention = installs.merge(tomorrows, how='left', on=('cohort_date', 'region'))
retention = retention.fillna(0)
retention['day_2_retention'] = retention['tomorrows'] / retention['total_installs'] * 100
retention['day_2_retention'] = retention['day_2_retention'].clip(0, 100)
retention
fig = px.line(retention, x='cohort_date', y='day_2_retention', color='region').show()
Уберем регионы в которых данные нестабильны
retention = retention[retention['region'].isin(['AS', 'EU', 'NA'])]
fig = px.line(retention, x='cohort_date', y='day_2_retention', color='region').show()
Трудно оценить удержание по таким волатильномыи графикам.
Можно сказать что удержание в AS очень волатильно и кажется что оно чуть выше чем у всех остальных.
В EU удержание кажется самым стабильным.
Попробуем уменьшить волатильность построив скользящие средние
pd.options.mode.chained_assignment = None # default='warn'
def ShowRollingMeanDay2Retention(WINDOW):
as_df = retention[retention['region'] == 'AS']
as_df['rolling'] = as_df['day_2_retention'].rolling(WINDOW).mean()
eu_df = retention[retention['region'] == 'EU']
eu_df['rolling'] = eu_df['day_2_retention'].rolling(WINDOW).mean()
na_df = retention[retention['region'] == 'NA']
na_df['rolling'] = na_df['day_2_retention'].rolling(WINDOW).mean()
rolling = as_df.append(eu_df).append(na_df)
fig = px.line(rolling, x='cohort_date', y='rolling', color='region').show()
interact(ShowRollingMeanDay2Retention, WINDOW=(1,20,1))
Тут уже видно что AS удержание самое высокое. И самое изменчивае. (видно цикличное изменение - 3 цикла по 2-2.5 месяца)
Удержание в NA чуть больше чем у EU.
В EU удержание самое стабильное но и самое маленькое.
counts = preinstalls.copy()
counts.drop_duplicates(subset=['user_id'])
counts = counts.groupby(['region'], as_index=False).agg(installs=('user_id', 'nunique'))
counts = counts.sort_values(by=['installs'], ascending=False)
counts
У EU больше всего данных по этому его график самый стабильный.
У AS в примерно 10 раз меньше данных вот почему его график самый волатильный.
Выделим события которые находятся в 24 часовом промежутке после инсталла для каждого пользователя.
install_times = project_dataset[project_dataset['event_name']=='FirstLaunchApp']
install_times = install_times.drop_duplicates(subset=('user_id'))
install_times = install_times[['user_id', 'event_time']]
install_times = install_times.rename(columns={'event_time' : 'install_time'})
install_times.head(2)
#table_24 = project_dataset[project_dataset['event_name']!='FirstLaunchApp']
table_24 = project_dataset.copy()
table_24 = table_24.merge(install_times, on='user_id')
table_24 = table_24[table_24['event_time']<=table_24['install_time'] + timedelta(hours=24)]
table_24 = table_24[table_24['event_time']>=table_24['install_time']]
table_24['living_hour'] = (table_24['event_time'] - table_24['install_time']).dt.seconds / 3600
table_24.head(2)
table_24['event_name'].value_counts(normalize=True).reset_index()
Самые частые события это конешно же LaunchApp и FirstLaunchApp.
Далее идут AchieveLevel_4-7.
Следующее по частоте - событие покупки.
Получается что чаще всего покупки делают до 8 уровня. (или можно сказать - покупают чаще чем доходят до 8 уровня)
Топ событий по дням
contents = table_24.groupby(['cohort_date', 'event_name'], as_index=False)['event_time'].count()
contents = contents[contents['event_name']!='LaunchApp']
contents = contents[contents['event_name']!='FirstLaunchApp']
contents = contents.rename(columns={'event_time' : 'occurrences'})
contents = contents.sort_values(by=['occurrences'], ascending=False)
fig = px.bar(contents, x='cohort_date', y='occurrences', color='event_name').show()
Видно 4 пик 4 Декабря. Ранее не придал этому значения. Видимо тоже какое то событие было (в это время был мини всплеск покупных пользователей - который я описал как - "докинули денег на рекламу")
В остальном же не видно каких то особых сдвигов в частоте тех или иных событий.
Частота событий по другим кагортам
contents = table_24.groupby(['region', 'event_name'], as_index=False)['event_time'].count()
contents = contents[contents['event_name']!='LaunchApp']
contents = contents[contents['event_name']!='FirstLaunchApp']
contents = contents.rename(columns={'event_time' : 'occurrences'})
contents = contents.sort_values(by=['occurrences'], ascending=False)
fig = px.bar(contents, x='event_name', y='occurrences', color='region').show()
Событие af_purchase происходит чаще примерно в 2 раза чем во всех других регионах. (если учесть что людей от туда в 2 раза меньщше то в процентном соотнощении получается что это событие происходит в NA аж в 4 раза чаще)
contents = table_24.groupby(['user_type', 'event_name'], as_index=False)['event_time'].count()
contents = contents[contents['event_name']!='LaunchApp']
contents = contents[contents['event_name']!='FirstLaunchApp']
contents = contents.rename(columns={'event_time' : 'occurrences'})
contents = contents.sort_values(by=['occurrences'], ascending=False)
fig = px.bar(contents, x='event_name', y='occurrences', color='user_type').show()
contents = table_24.groupby(['platform', 'event_name'], as_index=False)['event_time'].count()
contents = contents[contents['event_name']!='LaunchApp']
contents = contents[contents['event_name']!='FirstLaunchApp']
contents = contents.rename(columns={'event_time' : 'occurrences'})
contents = contents.sort_values(by=['occurrences'], ascending=False)
fig = px.bar(contents, x='event_name', y='occurrences', color='platform').show()
На IOS события af_purchase происходит чаще.
table_24['content_id'].value_counts(normalize=True).reset_index()
Самые продаваемые:
ta_low_offer_3 - 25%!
ta_starter - 14%.
ta_challenge_pass 11%.
Топ покупок по дням
contents = table_24.groupby(['cohort_date', 'content_id'], as_index=False)['event_time'].count()
contents = contents.rename(columns={'event_time' : 'occurrences'})
contents = contents.sort_values(by=['occurrences'], ascending=False)
fig = px.bar(contents, x='cohort_date', y='occurrences', color='content_id').show()
24 Марта продалось много ta_low_offer_2.
В другие дни оно так не выделяется.
Возможно оно было привязано к какой то акции.
Покупки по другим когортам
contents = table_24.groupby(['region', 'content_id'], as_index=False)['event_time'].count()
contents = contents.rename(columns={'event_time' : 'occurrences'})
contents = contents.sort_values(by=['occurrences'], ascending=False)
fig = px.bar(contents, x='content_id', y='occurrences', color='region').show()
ta_starter, ta_challenge_pass, ta_mid_offer_1 - лучше всего продаются в NA.
contents = table_24.groupby(['platform', 'content_id'], as_index=False)['event_time'].count()
contents = contents.rename(columns={'event_time' : 'occurrences'})
contents = contents.sort_values(by=['occurrences'], ascending=False)
fig = px.bar(contents, x='content_id', y='occurrences', color='platform').show()
ta_starter, ta_challenge_pass, ta_mid_offer_1 - лучше всего продаются на IOS.
contents = table_24.groupby(['user_type', 'content_id'], as_index=False)['event_time'].count()
contents = contents.rename(columns={'event_time' : 'occurrences'})
contents = contents.sort_values(by=['occurrences'], ascending=False)
fig = px.bar(contents, x='content_id', y='occurrences', color='user_type').show()
Можно было пробывать сравнивать в когортах в процентном соотнащении на единицу пользователя. А то получатеся у кого больше инсталлов у того и события чаще происходят. Можно чего нибудь не заметить.
", "application/vnd.plotly.v1+json": {"layout": {"margin": {"t": 60}, "xaxis": {"title": {"text": "cohort_date"}, "domain": [0, 1], "anchor": "y"}, "yaxis": {"title": {"text": "rolling"}, "domain": [0, 1], "anchor": "x"}, "template": {"layout": {"autotypenumbers": "strict", "colorway": ["#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52"], "annotationdefaults": {"arrowwidth": 1, "arrowhead": 0, "arrowcolor": "#2a3f5f"}, "coloraxis": {"colorbar": {"ticks": "", "outlinewidth": 0}}, "paper_bgcolor": "white", "hoverlabel": {"align": "left"}, "font": {"color": "#2a3f5f"}, "yaxis": {"gridcolor": "white", "zerolinewidth": 2, "linecolor": "white", "title": {"standoff": 15}, "automargin": true, "zerolinecolor": "white", "ticks": ""}, "plot_bgcolor": "#E5ECF6", "colorscale": {"sequentialminus": [[0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1, "#f0f921"]], "diverging": [[0, "#8e0152"], [0.1, "#c51b7d"], [0.2, "#de77ae"], [0.3, "#f1b6da"], [0.4, "#fde0ef"], [0.5, "#f7f7f7"], [0.6, "#e6f5d0"], [0.7, "#b8e186"], [0.8, "#7fbc41"], [0.9, "#4d9221"], [1, "#276419"]], "sequential": [[0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1, "#f0f921"]]}, "hovermode": "closest", "title": {"x": 0.05}, "geo": {"subunitcolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "bgcolor": "white", "showland": true, "lakecolor": "white"}, "mapbox": {"style": "light"}, "polar": {"radialaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "bgcolor": "#E5ECF6", "angularaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "ternary": {"bgcolor": "#E5ECF6", "aaxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "baxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}, "caxis": {"gridcolor": "white", "linecolor": "white", "ticks": ""}}, "scene": {"xaxis": {"showbackground": true, "gridcolor": "white", "backgroundcolor": "#E5ECF6", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "yaxis": {"showbackground": true, "gridcolor": "white", "backgroundcolor": "#E5ECF6", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "gridwidth": 2}, "zaxis": {"showbackground": true, "gridcolor": "white", "backgroundcolor": "#E5ECF6", "linecolor": "white", "ticks": "", "zerolinecolor": "white", "gridwidth": 2}}, "xaxis": {"gridcolor": "white", "zerolinewidth": 2, "linecolor": "white", "title": {"standoff": 15}, "automargin": true, "zerolinecolor": "white", "ticks": ""}, "shapedefaults": {"line": {"color": "#2a3f5f"}}}, "data": {"scattergl": [{"type": "scattergl", "marker": {"colorbar": {"ticks": "", "outlinewidth": 0}}}], "histogram2d": [{"colorbar": {"ticks": "", "outlinewidth": 0}, "colorscale": [[0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1, "#f0f921"]], "type": "histogram2d"}], "mesh3d": [{"colorbar": {"ticks": "", "outlinewidth": 0}, "type": "mesh3d"}], "scattergeo": [{"type": "scattergeo", "marker": {"colorbar": {"ticks": "", "outlinewidth": 0}}}], "bar": [{"type": "bar", "error_x": {"color": "#2a3f5f"}, "error_y": {"color": "#2a3f5f"}, "marker": {"pattern": {"solidity": 0.2, "fillmode": "overlay", "size": 10}, "line": {"color": "#E5ECF6", "width": 0.5}}}], "scatter": [{"type": "scatter", "marker": {"colorbar": {"ticks": "", "outlinewidth": 0}}}], "choropleth": [{"colorbar": {"ticks": "", "outlinewidth": 0}, "type": "choropleth"}], "histogram": [{"type": "histogram", "marker": {"pattern": {"solidity": 0.2, "fillmode": "overlay", "size": 10}}}], "carpet": [{"type": "carpet", "aaxis": {"startlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "endlinecolor": "#2a3f5f"}, "baxis": {"startlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "endlinecolor": "#2a3f5f"}}], "histogram2dcontour": [{"colorbar": {"ticks": "", "outlinewidth": 0}, "colorscale": [[0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1, "#f0f921"]], "type": "histogram2dcontour"}], "surface": [{"colorbar": {"ticks": "", "outlinewidth": 0}, "colorscale": [[0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1, "#f0f921"]], "type": "surface"}], "parcoords": [{"type": "parcoords", "line": {"colorbar": {"ticks": "", "outlinewidth": 0}}}], "scatterternary": [{"type": "scatterternary", "marker": {"colorbar": {"ticks": "", "outlinewidth": 0}}}], "contour": [{"colorbar": {"ticks": "", "outlinewidth": 0}, "colorscale": [[0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1, "#f0f921"]], "type": "contour"}], "scattercarpet": [{"type": "scattercarpet", "marker": {"colorbar": {"ticks": "", "outlinewidth": 0}}}], "heatmap": [{"colorbar": {"ticks": "", "outlinewidth": 0}, "colorscale": [[0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1, "#f0f921"]], "type": "heatmap"}], "heatmapgl": [{"colorbar": {"ticks": "", "outlinewidth": 0}, "colorscale": [[0, "#0d0887"], [0.1111111111111111, "#46039f"], [0.2222222222222222, "#7201a8"], [0.3333333333333333, "#9c179e"], [0.4444444444444444, "#bd3786"], [0.5555555555555556, "#d8576b"], [0.6666666666666666, "#ed7953"], [0.7777777777777778, "#fb9f3a"], [0.8888888888888888, "#fdca26"], [1, "#f0f921"]], "type": "heatmapgl"}], "scattermapbox": [{"type": "scattermapbox", "marker": {"colorbar": {"ticks": "", "outlinewidth": 0}}}], "contourcarpet": [{"colorbar": {"ticks": "", "outlinewidth": 0}, "type": "contourcarpet"}], "scatterpolar": [{"type": "scatterpolar", "marker": {"colorbar": {"ticks": "", "outlinewidth": 0}}}], "scatter3d": [{"type": "scatter3d", "marker": {"colorbar": {"ticks": "", "outlinewidth": 0}}, "line": {"colorbar": {"ticks": "", "outlinewidth": 0}}}], "scatterpolargl": [{"type": "scatterpolargl", "marker": {"colorbar": {"ticks": "", "outlinewidth": 0}}}], "pie": [{"type": "pie", "automargin": true}], "table": [{"header": {"fill": {"color": "#C8D4E3"}, "line": {"color": "white"}}, "type": "table", "cells": {"fill": {"color": "#EBF0F8"}, "line": {"color": "white"}}}], "barpolar": [{"type": "barpolar", "marker": {"pattern": {"solidity": 0.2, "fillmode": "overlay", "size": 10}, "line": {"color": "#E5ECF6", "width": 0.5}}}]}}, "legend": {"title": {"text": "region"}, "tracegroupgap": 0}}, "data": [{"legendgroup": "AS", "y": [null, null, null, null, null, null, null, null, null, 30.341269841269842, 32.84126984126984, 33.95238095238095, 32.95238095238095, 27.238095238095234, 26.285714285714285, 31.285714285714285, 29.06349206349206, 30.681139122315592, 30.26447245564892, 28.676237161531276, 30.898459383753497, 35.78734827264239, 40.439522185685874, 41.53842328458696, 43.68896091899557, 43.86137471209902, 47.0431928939172, 48.71501951930419, 49.04159609588078, 52.248879009046036, 52.193323453490486, 51.98279713770101, 49.7788990867265, 48.97761703544445, 48.27635476335469, 50.06046270938167, 51.10941375833272, 50.53733137847002, 51.69408813522678, 48.07504051617916, 46.88663471907771, 46.481776419482564, 47.516259178103255, 46.74244965429373, 46.19061018941078, 43.14713192854122, 43.91636269777199, 41.742449654293736, 45.12022743207151, 44.87022743207151, 47.64196656250629, 48.01492693546667, 52.22782048869006, 53.60348186435143, 53.21886647973605, 52.24699947206342, 50.818428043491984, 51.524949782622414, 48.12217200484464, 47.449095081767716, 45.36576174843439, 43.454339837012476, 39.20313210754388, 39.01794692235869, 40.88607879049056, 37.94490231990232, 37.2306166056166, 35.702838827838825, 36.952838827838825, 40.12591575091575, 39.95924908424908, 41.567640692640694, 42.123196248196244, 38.789862914862915, 35.0755772005772, 40.46019258519259, 41.603049728049726, 44.380827505827504, 41.61297036297036, 41.07725607725608, 41.07725607725608, 38.956043956043956, 37.081043956043956, 45.414377289377285, 48.96993284493284, 49.46767040149393, 52.30977566465183, 51.476442331318495, 52.255663110539274, 54.54137739625355, 55.278219501516716, 58.19488616818338, 58.40321950151671, 51.13049222878944, 48.90827000656722, 43.740202779676466, 46.89809751651857, 49.51109186680105, 50.67472823043742, 48.61222823043742, 47.87538612517426, 48.62538612517426, 51.29205279184092, 50.964780064568195, 51.79811339790153, 56.538373138161276, 54.538373138161276, 54.12234848484849, 52.26352495543672, 50.87147950089127, 54.64925727866904, 53.803103432515194, 51.553103432515194, 55.819770099181866, 56.94722107957402, 56.49267562502856, 52.24267562502856, 49.515402897755834, 49.90755976050094, 51.15157889925692, 43.37380112147913, 40.553288300966315, 46.803288300966315, 46.803288300966315, 45.35532450006134, 43.68865783339468, 49.93865783339468, 54.08007197480881, 56.74673864147549, 55.957264957264954, 65.95726495726495, 72.62393162393161, 65.48107448107449, 62.56440781440781, 63.718253968253975, 64.02128427128426, 55.68795093795094, 47.91017316017316, 46.19588744588744, 44.94588744588744, 36.374458874458874, 30.124458874458874, 29.767316017316016, 31.57287157287157, 28.57287157287157, 27.158730158730158, 29.77777777777778, 32.77777777777778, 33.492063492063494, 34.85834256183094, 35.05767811000369, 35.85313265545823, 35.22813265545824, 33.601148528474106, 35.6920576193832, 40.244028945548074, 38.62498132650045, 40.62498132650045, 41.33926704078617, 39.080130828161586, 42.4522238514174, 41.24010263929618, 43.910557184750736, 42.83912861332216, 44.748219522413066, 44.640692640692635, 45.307359307359306, 43.64069264069264, 43.640692640692635, 48.28354978354978, 46.44144452039188, 44.983111187058554, 46.43765664160401, 44.69162489557226, 44.69162489557226, 42.0249582289056, 48.69162489557226, 49.802736006683375, 46.58845029239767, 44.802736006683375, 43.31150793650794, 47.68650793650794, 47.68650793650794, 49.30266955266955, 46.636002886002885, 48.636002886002885, 41.96933621933622, 46.27489177489177, 43.77489177489177, 43.06060606060606, 47.39393939393939, 47.14393939393939, 48.14393939393939, 50.41666666666667, 48.333333333333336, 47.88888888888889, 48.841269841269835, 44.37698412698413, 49.37698412698413, 48.92243867243867, 47.92243867243867, 48.28607503607503, 44.01334776334776, 43.299062049062044, 46.049062049062044, 42.493506493506494, 38.20779220779221, 37.768231768231765, 32.768231768231765, 34.222777222777225, 35.65134865134865, 35.001998001998004, 36.27472527472528, 35.73901098901099, 34.3477066411849, 35.98407027754854, 37.650736944215204, 33.80458309806136], "hovertemplate": "region=AS
cohort_date=%{x}
rolling=%{y}
cohort_date=%{x}
rolling=%{y}
cohort_date=%{x}
rolling=%{y}